home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / UNIXLIB37B / !UnixLib37 / src / clib / sys / h / debug next >
Text File  |  1996-11-09  |  590b  |  33 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: /unixb/home/unixlib/source/unixlib37/src/clib/sys/h/RCS/debug,v $
  4.  * $Date: 1996/04/19 21:23:56 $
  5.  * $Revision: 1.1 $
  6.  * $State: Rel $
  7.  * $Author: simon $
  8.  *
  9.  * $Log: debug,v $
  10.  * Revision 1.1  1996/04/19 21:23:56  simon
  11.  * Initial revision
  12.  *
  13.  ***************************************************************************/
  14.  
  15. #ifdef DEBUG
  16.  
  17. #ifndef __SYS_DEBUG_H
  18. #define __SYS_DEBUG_H
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23.  
  24. extern void __debug(char *);
  25.  
  26. #ifdef __cplusplus
  27.     }
  28. #endif
  29.  
  30. #endif
  31.  
  32. #endif
  33.